home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / mb1503x.zip / FBIOS.DOC < prev    next >
Text File  |  1991-03-09  |  1KB  |  58 lines

  1.  
  2.  
  3. FBIOS is a COM port handler that is configured with command line
  4. specifications for interrupt, hardware type, and port addresses.
  5.  
  6. The command line contains groups of specifications delimited by blanks.
  7.  
  8. FBIOS spec1 spec2 spec3 etc.
  9.  
  10. Each specification has several fields, delimited by commas.
  11.  
  12. The first field is a single number giving the IRQ: 2,3,4 or 5
  13.  
  14. The second field is a single letter giving the hardware type:
  15.  
  16. C - Standard type COM port, no shared interrupt.
  17. Q - QuadRAM Quadport board.
  18. S - Shared interrupt board (modified MS-400)
  19.  
  20. The remaining fields give the COM numbers and associated port addresses.
  21.  
  22.  
  23.  
  24. Some examples.
  25.  
  26. 1. Standard COM1 only
  27.    This creates only COM1
  28.  
  29. FBIOS 4,C,1,3F8
  30.  
  31. 2. Standard COM2 only
  32.    This creates only COM2
  33.  
  34. FBIOS 3,C,2,2F8
  35.  
  36. 3. Standard COM1 and COM2
  37.    This creates COM1 and COM2
  38.  
  39. FBIOS 4,C,1,3F8 3,C,2,2F8
  40.  
  41. 4. Standard COM1 and COM2, with ports reversed.
  42.    This creates COM1 and COM2
  43.  
  44. FBIOS 4,C,2,3F8 3,C,1,2F8
  45.  
  46. 5. COM1 plus Quadport
  47.    This creates COM1 through COM6
  48.  
  49. FBIOS 4,C,1,3F8 3,Q,2,280,3,290,4,2A0,5,2B0,6,2C0
  50.  
  51. 6. MS-400 on IRQ2
  52.    This creates COM3 through COM6
  53.  
  54. FBIOS 2,S,3,3E8,4,3E0,5,2F0,6,2E8
  55.  
  56.  
  57.  
  58.